Changeset 6010 for branches/newapi

Show
Ignore:
Timestamp:
01/11/08 03:33:08 (11 months ago)
Author:
erijo
Message:

Added two typedefs: Licq::Plugin::Information::Ptr and Licq::Plugin::InformationVector?.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/newapi/licq/licq/interface/plugin.h

    r5931 r6010  
    2424#include "licq/thread/thread.h" 
    2525 
     26#include <boost/shared_ptr.hpp> 
    2627#include <string> 
    2728#include <vector> 
     
    5556  struct Information 
    5657  { 
     58    typedef boost::shared_ptr<const Information> Ptr; 
     59 
    5760    std::string name; 
    5861    std::string description; 
     
    6770    std::string filename; 
    6871  }; 
     72 
     73  typedef std::vector<Information::Ptr> InformationVector; 
    6974 
    7075  struct Setup