summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2009-10-11 23:25:31 +0000
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2009-10-11 23:25:31 +0000
commite4a590c7926b4b9454093f88b2d4d1616b717df2 (patch)
treea4720534e7fe007d99d63cad356230a55511571c
parent80c09792394a213f19d1384e61fdf8dfc3fce49a (diff)
Less CoreExport.. Too much of a good thing..
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11847 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--include/extensible.h10
-rw-r--r--include/fakeuser.h2
-rw-r--r--include/protocol.h8
3 files changed, 10 insertions, 10 deletions
diff --git a/include/extensible.h b/include/extensible.h
index b6e7da5d2..c491f99b9 100644
--- a/include/extensible.h
+++ b/include/extensible.h
@@ -90,7 +90,7 @@ class CoreExport Extensible : public classbase
};
/** Base class for items that are NOT synchronized between servers */
-class CoreExport LocalExtItem : public ExtensionItem
+class LocalExtItem : public ExtensionItem
{
public:
LocalExtItem(const std::string& key, Module* owner);
@@ -101,7 +101,7 @@ class CoreExport LocalExtItem : public ExtensionItem
};
template<typename T>
-class CoreExport SimpleExtItem : public LocalExtItem
+class SimpleExtItem : public LocalExtItem
{
public:
SimpleExtItem(const std::string& Key, Module* parent) : LocalExtItem(Key, parent)
@@ -153,7 +153,7 @@ class CoreExport SimpleExtItem : public LocalExtItem
}
};
-class CoreExport LocalStringExt : public SimpleExtItem<std::string>
+class LocalStringExt : public SimpleExtItem<std::string>
{
public:
LocalStringExt(const std::string& key, Module* owner);
@@ -161,7 +161,7 @@ class CoreExport LocalStringExt : public SimpleExtItem<std::string>
std::string serialize(SerializeFormat format, const Extensible* container, void* item);
};
-class CoreExport LocalIntExt : public LocalExtItem
+class LocalIntExt : public LocalExtItem
{
public:
LocalIntExt(const std::string& key, Module* owner);
@@ -172,7 +172,7 @@ class CoreExport LocalIntExt : public LocalExtItem
void free(void* item);
};
-class CoreExport StringExtItem : public ExtensionItem
+class StringExtItem : public ExtensionItem
{
public:
StringExtItem(const std::string& key, Module* owner);
diff --git a/include/fakeuser.h b/include/fakeuser.h
index a46971091..e21ecf9b8 100644
--- a/include/fakeuser.h
+++ b/include/fakeuser.h
@@ -16,7 +16,7 @@
#include "users.h"
-class CoreExport FakeUser : public User
+class FakeUser : public User
{
public:
FakeUser(const std::string &uid) : User(uid)
diff --git a/include/protocol.h b/include/protocol.h
index c6db5155e..a3afe9fb3 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -18,9 +18,9 @@
class User;
-CoreExport typedef std::vector<std::string> parameterlist;
+typedef std::vector<std::string> parameterlist;
-class CoreExport ProtoServer
+class ProtoServer
{
public:
std::string servername;
@@ -31,9 +31,9 @@ class CoreExport ProtoServer
unsigned int latencyms;
};
-CoreExport typedef std::list<ProtoServer> ProtoServerList;
+typedef std::list<ProtoServer> ProtoServerList;
-class CoreExport ProtocolInterface : public Extensible
+class ProtocolInterface : public Extensible
{
public:
ProtocolInterface() { }