/* videodevicepool.h - Kopete Multiple Video Device handler Class Copyright (c) 2005-2006 by Cláudio da Silveira Pinheiro Kopete (c) 2002-2003 by the Kopete developers ************************************************************************* * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * ************************************************************************* */ #ifndef KOPETE_AVVIDEODEVICEMODELPOOL_H #define KOPETE_AVVIDEODEVICEMODELPOOL_H #include #include #include #include "kopete_export.h" namespace Kopete { namespace AV { /** @author Kopete Developers */ class VideoDeviceModelPool{ struct VideoDeviceModel { TQString model; size_t count; }; TQValueVector m_devicemodel; public: VideoDeviceModelPool(); ~VideoDeviceModelPool(); void clear(); size_t size(); size_t addModel(TQString newmodel); }; } } #endif