forked from blue/squawk
initial
This commit is contained in:
commit
de36fe2a4e
15 changed files with 421 additions and 0 deletions
27
core/squawk.h
Normal file
27
core/squawk.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef CORE_SQUAWK_H
|
||||
#define CORE_SQUAWK_H
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <deque>
|
||||
|
||||
#include "account.h"
|
||||
|
||||
namespace Core
|
||||
{
|
||||
class Squawk : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
Squawk(QObject* parent = 0);
|
||||
~Squawk();
|
||||
|
||||
private:
|
||||
typedef std::deque<Account> Accounts;
|
||||
|
||||
Accounts accounts;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // CORE_SQUAWK_H
|
Loading…
Add table
Add a link
Reference in a new issue