/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs

« back to all changes in this revision

Viewing changes to Development/languages/C/Samples/Plugins/Constructor_Unknown/interface.h

  • Committer: Suren A. Chilingaryan
  • Date: 2009-04-09 03:21:08 UTC
  • Revision ID: csa@dside.dyndns.org-20090409032108-w4edamdh4adrgdu3
import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
class PluginInterface 
 
2
{
 
3
 public:
 
4
    void (*Call)();
 
5
};
 
6
 
 
7
class Plugin : public PluginInterface
 
8
{
 
9
 public:
 
10
    Plugin();
 
11
    void Call();
 
12
 private:
 
13
    char str[120];
 
14
};
 
15