2021-05-02 03:47:57 +09:00

28 lines
440 B
C++

#pragma once
#include <vector>
#include <algorithm>
#include "BluetoothRadioManager.h"
#include "BluetoothDeviceManager.h"
class CBluetoothManger
{
public:
CBluetoothManger();
~CBluetoothManger();
private:
std::vector<CBluetoothRadioManager*> m_vecRadios;
void FindRadios(void);
protected:
public:
size_t GetRadioSize(void);
CBluetoothRadioManager *GetRadio(size_t pos);
CBluetoothRadioManager *GetRadio(LPCTSTR pszName);
};