Skip to content

Commit

Permalink
Convert ISE_Abstract to interface class.
Browse files Browse the repository at this point in the history
nitrocaster committed Nov 8, 2015

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 33bfd25 commit 94002ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/xrServerEntities/xrServer_Objects_Abstract.h
Original file line number Diff line number Diff line change
@@ -121,7 +121,7 @@ class ISE_Abstract {
virtual ~ISE_Abstract() = 0;

Flags32 m_editor_flags;
IC void set_editor_flag (u32 mask) {m_editor_flags.set (mask,TRUE);}
virtual void set_editor_flag(u32 mask) = 0;

public:
virtual void __stdcall Spawn_Write (NET_Packet &tNetPacket, BOOL bLocal) = 0;
@@ -147,6 +147,7 @@ class ISE_Abstract {
};

IC ISE_Abstract::~ISE_Abstract() {}
IC void ISE_Abstract::set_editor_flag(u32 mask) { m_editor_flags.set(mask, TRUE); }

#pragma warning(pop)

0 comments on commit 94002ef

Please sign in to comment.