- Prefix our macros with "SG_", as per Luca request

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@301 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-02-07 20:41:59 +00:00
parent 7de2c281bb
commit 235fdfdbe0
8 changed files with 19 additions and 19 deletions

View file

@ -35,7 +35,7 @@ namespace sgpem
It IS a Schedulable object.
*/
class DLLEXPORT Process : public Schedulable
class SG_DLLEXPORT Process : public Schedulable
{
public:
Process(const Glib::ustring& name, const unsigned int& arrival, const unsigned int& total, const int& priority);

View file

@ -36,7 +36,7 @@ namespace sgpem
* All subclasses are ... (FIXME: teach Luca and Marco what's
* the Italian language for, damn them! -- they must have
* *smoked* mushrooms! :-) ) */
class DLLEXPORT Schedulable
class SG_DLLEXPORT Schedulable
{
public:
Schedulable(const Glib::ustring& name, const unsigned int& arrival, const unsigned int& total, const int& priority);

View file

@ -36,7 +36,7 @@ namespace sgpem
Objects SchedulableStatus are created by Scheduler and destroyed by SimulationStatus if they are linked to it
or by Scheduler.
*/
class DLLEXPORT SchedulableStatus
class SG_DLLEXPORT SchedulableStatus
{
public:
enum state

View file

@ -37,7 +37,7 @@ namespace sgpem
running and other infos (since M02+)
*/
class DLLEXPORT SimulationStatus
class SG_DLLEXPORT SimulationStatus
{
public:
SimulationStatus();

View file

@ -36,7 +36,7 @@ namespace sgpem
*/
class DLLEXPORT Slice
class SG_DLLEXPORT Slice
{
public:
Slice(const int& start, const int& duration, const SimulationStatus& status);

View file

@ -24,6 +24,6 @@
#include "config.h"
/** \brief This function starts the whole GUI */
void DLLEXPORT start_gui(int argc, char** argv);
void SG_DLLEXPORT start_gui(int argc, char** argv);
#endif