File: actionpluginmockup.cpp

package info (click to toggle)
packagesearch 2.7.3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,244 kB
  • sloc: cpp: 12,412; perl: 282; makefile: 69; sh: 13
file content (33 lines) | stat: -rw-r--r-- 477 bytes parent folder | download | duplicates (8)
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
//
// C++ Implementation: actionpluginmockup
//
// Description: 
//
//
// Author: Benjamin Mesing <bensmail@gmx.net>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "actionpluginmockup.h"

namespace NTest {

ActionPluginMockup::ActionPluginMockup()
 : NPlugin::ActionPlugin()
{
}


ActionPluginMockup::~ActionPluginMockup()
{
}

vector<Action*> ActionPluginMockup::actions() const
{
	vector<Action*> actions;
	return actions;
}


}