Changeset 729 for code/branches/FICN/src/orxonox/objects/weapon_system
- Timestamp:
- Dec 30, 2007, 9:48:52 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox/objects/weapon_system
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/objects/weapon_system/AmmunitionDump.h
r715 r729 42 42 43 43 namespace orxonox { 44 class AmmunitionDump : public BaseObject, public network::Synchronisable44 class _OrxonoxExport AmmunitionDump : public BaseObject, public network::Synchronisable 45 45 { 46 46 public: … … 66 66 int *capacity_; 67 67 }; 68 ExportClass(AmmunitionDump, Orxonox); 68 69 } 69 70 -
code/branches/FICN/src/orxonox/objects/weapon_system/BarrelGun.h
r708 r729 38 38 39 39 namespace orxonox { 40 class BarrelGun : public BaseWeapon40 class _OrxonoxExport BarrelGun : public BaseWeapon 41 41 { 42 42 public: … … 60 60 61 61 }; 62 ExportClass(BarrelGun, Orxonox); 62 63 } 63 64 -
code/branches/FICN/src/orxonox/objects/weapon_system/BaseWeapon.h
r708 r729 38 38 39 39 namespace orxonox { 40 class BaseWeapon : public Model40 class _OrxonoxExport BaseWeapon : public Model 41 41 { 42 42 public: … … 122 122 123 123 }; 124 ExportAbstractClass(BaseWeapon, Orxonox); 124 125 } 125 126 -
code/branches/FICN/src/orxonox/objects/weapon_system/Bullet.h
r708 r729 37 37 38 38 namespace orxonox { 39 class Bullet : public Model39 class _OrxonoxExport Bullet : public Model 40 40 { 41 41 public: … … 47 47 inline virtual void loadParams(TiXmlElement* xmlElem) { Model::loadParams(xmlElem); }; 48 48 }; 49 ExportClass(Bullet, Orxonox); 49 50 } 50 51 -
code/branches/FICN/src/orxonox/objects/weapon_system/BulletManager.h
r715 r729 38 38 #include "network/Synchronisable.h" 39 39 #include "tinyxml/tinyxml.h" 40 //#include "../core/CoreIncludes.h"40 #include "../../core/CoreIncludes.h" 41 41 #include "../BaseObject.h" 42 42 #include "../Tickable.h" 43 43 44 44 namespace orxonox { 45 class BulletManager : public BaseObject, public network::Synchronisable, public Tickable45 class _OrxonoxExport BulletManager : public BaseObject, public network::Synchronisable, public Tickable 46 46 { 47 47 public: … … 67 67 int bulletsIndex_; 68 68 }; 69 ExportClass(BulletManager, Orxonox); 69 70 } 70 71 -
code/branches/FICN/src/orxonox/objects/weapon_system/WeaponStation.h
r708 r729 36 36 37 37 namespace orxonox { 38 class WeaponStation38 class _OrxonoxExport WeaponStation 39 39 { 40 40 public:
Note: See TracChangeset
for help on using the changeset viewer.