~thomas-voss/platform-api/fix-1202309

« back to all changes in this revision

Viewing changes to include/ubuntu/application/operation_mode.h

Add first wave of doxygen documentation and make the documentation known to the packaging setup.

Approved by PS Jenkins bot, Ricardo Salveti.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
15
 *
16
16
 * Authored by: Ricardo Mendoza <ricardo.mendoza@canonical.com>
17
 
 *              Thomas Voß <thomas.voss@canonical.com>           
 
17
 *              Thomas Voß <thomas.voss@canonical.com>
18
18
 */
19
19
 
20
20
#ifndef UBUNTU_APPLICATION_OPERATION_MODE_H_
21
21
#define UBUNTU_APPLICATION_OPERATION_MODE_H_
22
22
 
 
23
/**
 
24
 * \brief Describes the different operational modes that an
 
25
 * application can run in.
 
26
 */
23
27
typedef enum
24
28
{
25
 
        U_APPLICATION_FOREGROUND_APP,
26
 
        U_APPLICATION_BACKGROUND_SERVICE
 
29
    U_APPLICATION_FOREGROUND_APP,
 
30
    U_APPLICATION_BACKGROUND_SERVICE
27
31
} UApplicationOperationMode;
28
32
 
29
33
#endif /* UBUNTU_APPLICATION_OPERATION_MODE_H_ */