mirror of
https://github.com/ioacademy-jikim/android_framwork
synced 2025-06-07 16:06:29 +00:00
14 lines
197 B
C++
14 lines
197 B
C++
#ifndef ANDROID_LED_SERVICE_H
|
|
#define ANDROID_LED_SERVICE_H
|
|
#include "ILedService.h"
|
|
|
|
namespace android {
|
|
class LedService : public BnLedService
|
|
{
|
|
public :
|
|
void ledOn(void);
|
|
};
|
|
};
|
|
|
|
#endif
|