Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 4f23c27070572be9f0b80d659f540b78 > files > 81

motor-debug-3.4.0-2mdv2009.0.i586.rpm

#ifndef __MOTORMANAGER_H__
#define __MOTORMANAGER_H__

#include "motorcommon.h"
#include "projectname.h"

__MOTOR_BEGIN_NAMESPACE

class motormanager {
    private:
	vector<string> container;

	static int addtemplate(const char *file, const struct stat *sb, int flag);

    public:
	motormanager();
	~motormanager();

	vector<projectname> getprojectlist();
	vector<string> gettemplatelist();
	vector<string> getvcslist();
};

__MOTOR_END_NAMESPACE

#ifdef __MOTOR_USE_NAMESPACES

using motor::motormanager;

#endif

extern motormanager manager;

#endif