[refactor] add namespace 'crossdesk' to codebase

This commit is contained in:
dijunkun
2025-10-27 21:09:39 +08:00
parent 3b34c26555
commit 401bfe4483
68 changed files with 313 additions and 606 deletions

View File

@@ -9,9 +9,11 @@
#include <functional>
namespace crossdesk {
class SpeakerCapturer {
public:
typedef std::function<void(unsigned char *, size_t, const char *)>
typedef std::function<void(unsigned char*, size_t, const char*)>
speaker_data_cb;
public:
@@ -23,5 +25,5 @@ class SpeakerCapturer {
virtual int Start() = 0;
virtual int Stop() = 0;
};
} // namespace crossdesk
#endif