status.h

Go to the documentation of this file.
00001 /* vim: set et sw=3 tw=0 fo=croqlaw cino=t0:
00002  *
00003  * Astxx, the Asterisk C++ API and Utility Library.
00004  * Copyright (C) 2005-2007  Matthew A. Nicholson
00005  * Copyright (C) 2005-2007  Digium, Inc.
00006  * 
00007  * This library is free software; you can redistribute it and/or
00008  * modify it under the terms of the GNU Lesser General Public
00009  * License version 2.1 as published by the Free Software Foundation.
00010  * 
00011  * This library is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014  * Lesser General Public License for more details.
00015  * 
00016  * You should have received a copy of the GNU Lesser General Public
00017  * License along with this library; if not, write to the Free Software
00018  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00019  */
00020 
00027 #ifndef ASTXX_MANAGER_ACTION_STATUS_H
00028 #define ASTXX_MANAGER_ACTION_STATUS_H
00029 
00030 #include <astxx/manager/basic_action.h>
00031 #include <astxx/manager/message.h>
00032 
00033 namespace astxx {
00034    namespace manager {
00035       namespace action {
00042          class status : public basic_action {
00043             public:
00050                status(const std::string& channel = "", const std::string& action_id = "") : channel(channel), action_id(action_id) {
00051                }
00052          
00053                message::action action() const {
00054                   message::action action("Status");
00055                   if (not action_id.empty()) {
00056                      action["ActionID"] = action_id;
00057                   }
00058                   if (not channel.empty()) {
00059                      action["Channel"] = channel;
00060                   }
00061                   return action;
00062                }
00063 
00064             private:
00065                std::string channel;
00066                std::string action_id;
00067          };
00068       }
00069    }
00070 }
00071 
00072 #endif

Generated on Thu Jul 3 01:32:42 2008 for Astxx by  doxygen 1.5.6