Chat-O-Matic/application/preferences/CayaPreferences.h

29 lines
565 B
C
Raw Normal View History

/*
* Copyright 2010, Oliver Ruiz Dorantes. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _CAYA_PREFERENCES_H
#define _CAYA_PREFERENCES_H
#include "PreferencesContainer.h"
typedef struct CayaPreferencesData
{
bool MoveToCurrentWorkspace;
bool ActivateWindow;
// Add here as much fields as desired
CayaPreferencesData()
:
MoveToCurrentWorkspace(true),
ActivateWindow(true)
// Add here its default values
{ }
};
typedef PreferencesContainer<CayaPreferencesData> CayaPreferences;
#endif // _CAYA_PREFERENCES_H