~hikiko/nux/arb-srgba-shader

« back to all changes in this revision

Viewing changes to NuxCore/Plugin/NPluginInterface.h

  • Committer: Neil Jagdish Patel
  • Date: 2010-09-01 19:25:37 UTC
  • Revision ID: neil.patel@canonical.com-20100901192537-mfz7rm6q262pewg6
Import and build NuxCore

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef NPLUGININTERFACE_H
 
2
#define NPLUGININTERFACE_H
 
3
 
 
4
#include "NPlugin.h"
 
5
 
 
6
NAMESPACE_BEGIN
 
7
 
 
8
class NPluginInterface 
 
9
{
 
10
public:
 
11
    NPluginInterface(){}
 
12
        virtual ~NPluginInterface(){}
 
13
 
 
14
        virtual int Activate()=0;
 
15
        virtual int Execute()=0;
 
16
        virtual int Destroy()=0;
 
17
};
 
18
 
 
19
 
 
20
NAMESPACE_END
 
21
 
 
22
#endif // NPLUGININTERFACE_H
 
23
 
 
24