Home | History | Annotate | Download | only in common
      1 /*
      2 // Copyright(c)2014 IntelCorporation
      3 //
      4 // LicensedundertheApacheLicense,Version2.0(the"License");
      5 // youmaynotusethisfileexceptincompliancewiththeLicense.
      6 // YoumayobtainacopyoftheLicenseat
      7 //
      8 // http://www.apache.org/licenses/LICENSE-2.0
      9 //
     10 // Unlessrequiredbyapplicablelaworagreedtoinwriting,software
     11 // distributedundertheLicenseisdistributedonan"ASIS"BASIS,
     12 // WITHOUTWARRANTIESORCONDITIONSOFANYKIND,eitherexpressorimplied.
     13 // SeetheLicenseforthespecificlanguagegoverningpermissionsand
     14 // limitationsundertheLicense.
     15 */
     16 #ifndef BLANK_CONTROL_H
     17 #define BLANK_CONTROL_H
     18 
     19 #include <IBlankControl.h>
     20 
     21 namespace android {
     22 namespace intel {
     23 
     24 class BlankControl : public IBlankControl {
     25 public:
     26     BlankControl();
     27     virtual ~BlankControl();
     28 
     29 public:
     30     bool blank(int disp, bool blank);
     31 };
     32 
     33 } // namespace intel
     34 } // namespace android
     35 
     36 #endif /* BLANK_CONTROL_H */
     37