source: qutecom-coip/libs/coipmanager/tests/commandline-test/AccountCommand.h @ 126:e699782dd54b

Last change on this file since 126:e699782dd54b was 126:e699782dd54b, checked in by laurent, 3 years ago

update copyright

File size: 1.3 KB
Line 
1/*
2 * QuteCom, a voice over Internet phone
3 * Copyright (C) 2010 Mbdsys
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 */
19
20#ifndef OWACCOUNTCOMMAND_H
21#define OWACCOUNTCOMMAND_H
22
23#include "Command.h"
24
25/**
26 * Command for Account management.
27 *
28 * @author Philippe Bernery
29 */
30class AccountCommand : public Command {
31public:
32
33        AccountCommand(CoIpManager & coIpManager);
34
35        virtual ~AccountCommand();
36
37private:
38
39        /**
40         * @name Menu entry
41         * @{
42         */
43
44        /** Adds an Account. */
45        void addAccount();
46
47        /** Removes an Account. */
48        void removeAccount();
49
50        /** Lists Account. */
51        void listAccount();
52
53        /** @} */
54
55};
56
57#endif //OWACCOUNTCOMMAND_H
Note: See TracBrowser for help on using the repository browser.