23 lines
315 B
C++
23 lines
315 B
C++
/*
|
|
* PowerDownManager.h
|
|
*
|
|
* Created on: Mar 9, 2014
|
|
* Author: jonny
|
|
*/
|
|
|
|
#ifndef POWERDOWNMANAGER_H_
|
|
#define POWERDOWNMANAGER_H_
|
|
|
|
namespace controller {
|
|
|
|
class PowerDownManager
|
|
{
|
|
public:
|
|
PowerDownManager();
|
|
virtual ~PowerDownManager();
|
|
};
|
|
|
|
} /* namespace controller */
|
|
|
|
#endif /* POWERDOWNMANAGER_H_ */
|