diff options
author | Adam <Adam@drink-coca-cola.info> | 2010-05-11 14:36:53 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 21:01:17 -0400 |
commit | e6263dba84b80f03d02c379ace081e602f8ef199 (patch) | |
tree | a6d055b24245e47b1f6c4973c4502937ecabd751 /include/modes.h | |
parent | 631d11d6a81e8c5f63a19fc279606a61ab1a0563 (diff) |
Allow attaching metadata to nickrequests and storing it in the databases and fixed windows build
Diffstat (limited to 'include/modes.h')
-rw-r--r-- | include/modes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modes.h b/include/modes.h index 622627774..d1b601b31 100644 --- a/include/modes.h +++ b/include/modes.h @@ -80,7 +80,7 @@ class CoreExport Mode /* Class of mode this is */ ModeClass Class; /* The mode name, as a string */ - const std::string NameAsString; + std::string NameAsString; /* Mode char for this */ char ModeChar; /* Type of mode this is */ @@ -119,7 +119,7 @@ class CoreExport UserMode : public Mode virtual ~UserMode(); }; -class UserModeParam : public UserMode +class CoreExport UserModeParam : public UserMode { public: /** Default constructor |