Changeset 4871 for branches/erijo-dev

Show
Ignore:
Timestamp:
03/20/07 05:19:20 (21 months ago)
Author:
erijo
Message:

Compile fix

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/erijo-dev/licq/licq/interface/event.h

    r4841 r4871  
    4242    \brief Represents an event in the system. 
    4343 
    44     An event has a name, a sender id and any number of properties (key, value pairs). 
     44    An event has a name, a sender id and any number of properties  
     45    (key, value pairs). 
    4546*/ 
    4647class IEvent : private boost::noncopyable 
     
    5758      \return True if property exists; otherwise false. 
    5859  */ 
    59   virtual bool getProperty(const std::string& key, const boost::any** value) const = 0; 
     60  virtual bool getProperty(const std::string& key,  
     61               const boost::any** value) const = 0; 
    6062 
    6163public: 
     
    117119 
    118120template<typename ValueType> 
    119 inline bool Licq::IEvent::getProperty(const std::string& key, ValueType* value) const 
     121bool Licq::IEvent::getProperty(const std::string& key, ValueType* value) const 
    120122{ 
    121123  const boost::any* valuePtr;