File: actionplugin.h

package info (click to toggle)
packagesearch 2.7.5
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 3,248 kB
  • ctags: 2,160
  • sloc: cpp: 12,397; perl: 252; makefile: 69; sh: 13
file content (33 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// Author: Benjamin Mesing <bensmail@gmx.net>
//
// Copyright: See COPYING file that comes with this distribution
//
//
// This file was generated on Wed Aug 31 2005 at 10:43:44
//

#ifndef __NPLUGIN_ACTIONPLUGIN_H_2005_08_31
#define __NPLUGIN_ACTIONPLUGIN_H_2005_08_31

#include <vector>

// NPlugin
#include "plugin.h"
#include "action.h"

using namespace std;

namespace NPlugin 
{ 

class ActionPlugin : public Plugin 
{
public:
	/** @brief Returns the Actions offered by this plugin. */
	virtual vector<Action*> actions() const = 0;
};

} 
#endif // __NPLUGIN_ACTIONPLUGIN_H_2005_08_31