mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-18 19:55:52 +01:00
12 lines
252 B
C++
12 lines
252 B
C++
#pragma once
|
|
#include "../ComponentManagerBase.h"
|
|
|
|
class ComponentManager : public ComponentManagerBase
|
|
{
|
|
public:
|
|
int AddComponent(nx_uri_t filename);
|
|
int AddDirectory(nx_uri_t directory);
|
|
|
|
private:
|
|
void CloseComponent(ifc_component *component);
|
|
}; |