demotool/c-project.hh

45 lines
1,009 B
C++
Raw Normal View History

2017-11-24 14:13:39 +01:00
#pragma once
#ifndef REAL_BUILD
# include "externals.hh"
#endif
#include <ebcl/Sets.hh>
struct T_Project;
2017-11-24 14:13:39 +01:00
class A_ProjectPathListener
{
friend struct T_Project;
2017-11-24 14:13:39 +01:00
public:
virtual ~A_ProjectPathListener( ) = 0;
protected:
2017-11-24 14:13:39 +01:00
virtual void projectPathChanged( ) noexcept = 0;
};
struct T_Project
{
explicit T_Project( T_String const& path ) noexcept
{ setBasePath( path ); }
2017-11-24 14:13:39 +01:00
void setBasePath( T_String const& path ) noexcept;
T_String const& basePath( ) const noexcept
{ return basePath_; }
T_String pathOf( T_String const& file ) const noexcept;
T_String pathOf( char const* file ) const noexcept;
void addListener( A_ProjectPathListener* listener ) noexcept
{ listeners_.add( listener ); }
void removeListener( A_ProjectPathListener* listener ) noexcept
{ listeners_.remove( listener ); }
private:
T_String basePath_;
2017-11-24 14:13:39 +01:00
ebcl::T_Set< A_ProjectPathListener* > listeners_{
ebcl::UseTag< ebcl::ArrayBacked< 16 > >( )
};
void setBasePathInternal( T_String path ) noexcept;
};