mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 17:09:26 +02:00
Define utility AttachedVirtualFunction
This commit is contained in:
parent
660b8c07ad
commit
77eeba5463
@ -30,6 +30,7 @@ src/AdornedRulerPanel.h
|
|||||||
src/AboutDialog.cpp
|
src/AboutDialog.cpp
|
||||||
src/AboutDialog.h
|
src/AboutDialog.h
|
||||||
src/AllThemeResources.h
|
src/AllThemeResources.h
|
||||||
|
src/AttachedVirtualFunction.h
|
||||||
src/Audacity.h
|
src/Audacity.h
|
||||||
src/AudacityApp.cpp
|
src/AudacityApp.cpp
|
||||||
src/AudacityApp.h
|
src/AudacityApp.h
|
||||||
|
@ -3364,6 +3364,7 @@
|
|||||||
5ED1D0AF1CDE560C00471E3C /* BackedPanel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BackedPanel.cpp; sourceTree = "<group>"; };
|
5ED1D0AF1CDE560C00471E3C /* BackedPanel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BackedPanel.cpp; sourceTree = "<group>"; };
|
||||||
5ED1D0B01CDE560C00471E3C /* BackedPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BackedPanel.h; sourceTree = "<group>"; };
|
5ED1D0B01CDE560C00471E3C /* BackedPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BackedPanel.h; sourceTree = "<group>"; };
|
||||||
5EE8984821D68D88006DE939 /* CommandManagerWindowClasses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandManagerWindowClasses.h; sourceTree = "<group>"; };
|
5EE8984821D68D88006DE939 /* CommandManagerWindowClasses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandManagerWindowClasses.h; sourceTree = "<group>"; };
|
||||||
|
5EEE942021F397C00038E68E /* AttachedVirtualFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AttachedVirtualFunction.h; sourceTree = "<group>"; };
|
||||||
5EF17C211D1F0A690090A642 /* ScrubbingToolBar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScrubbingToolBar.cpp; sourceTree = "<group>"; };
|
5EF17C211D1F0A690090A642 /* ScrubbingToolBar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScrubbingToolBar.cpp; sourceTree = "<group>"; };
|
||||||
5EF17C221D1F0A690090A642 /* ScrubbingToolBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScrubbingToolBar.h; sourceTree = "<group>"; };
|
5EF17C221D1F0A690090A642 /* ScrubbingToolBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScrubbingToolBar.h; sourceTree = "<group>"; };
|
||||||
5EF3E643203FBAFB006C6882 /* AudacityCommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudacityCommand.cpp; sourceTree = "<group>"; };
|
5EF3E643203FBAFB006C6882 /* AudacityCommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudacityCommand.cpp; sourceTree = "<group>"; };
|
||||||
@ -4470,6 +4471,7 @@
|
|||||||
1790AFCA09883BFD008A330A /* AColor.h */,
|
1790AFCA09883BFD008A330A /* AColor.h */,
|
||||||
5E08C7382180D460004079AE /* AdornedRulerPanel.h */,
|
5E08C7382180D460004079AE /* AdornedRulerPanel.h */,
|
||||||
28FB12230A3790DF006F0917 /* AllThemeResources.h */,
|
28FB12230A3790DF006F0917 /* AllThemeResources.h */,
|
||||||
|
5EEE942021F397C00038E68E /* AttachedVirtualFunction.h */,
|
||||||
1790AFCC09883BFD008A330A /* Audacity.h */,
|
1790AFCC09883BFD008A330A /* Audacity.h */,
|
||||||
1790AFCF09883BFD008A330A /* AudacityApp.h */,
|
1790AFCF09883BFD008A330A /* AudacityApp.h */,
|
||||||
5ECCE7651DE49834009900E9 /* AudacityException.h */,
|
5ECCE7651DE49834009900E9 /* AudacityException.h */,
|
||||||
|
258
src/AttachedVirtualFunction.h
Normal file
258
src/AttachedVirtualFunction.h
Normal file
@ -0,0 +1,258 @@
|
|||||||
|
/**********************************************************************
|
||||||
|
|
||||||
|
Audacity: A Digital Audio Editor
|
||||||
|
|
||||||
|
AttachedVirtualFunction.h
|
||||||
|
|
||||||
|
Paul Licameli
|
||||||
|
|
||||||
|
**********************************************************************/
|
||||||
|
|
||||||
|
#ifndef __AUDACITY_ATTACHED_VIRTUAL_FUNCTION__
|
||||||
|
#define __AUDACITY_ATTACHED_VIRTUAL_FUNCTION__
|
||||||
|
|
||||||
|
/* \brief Define a "virtual" function with multiple bodies chosen by type-switch
|
||||||
|
on the runtime class of the first argument, leaving the set of functions
|
||||||
|
open-ended for extension, but also requiring no modification of the definition
|
||||||
|
of the base class of the type hierarchy that is switched on.
|
||||||
|
|
||||||
|
The invocation of the function is not as efficient as for true virtual functions
|
||||||
|
but the advantage of this utility is greater compilation decoupling. A client
|
||||||
|
can attach its own virtual functions to a class hierarchy in the core.
|
||||||
|
|
||||||
|
Beware that invocation of the function should not be done during initialization
|
||||||
|
of file scope static objects. Dispatch might not go to the correct subclass
|
||||||
|
case if initializations are not yet complete.
|
||||||
|
|
||||||
|
Example usage:
|
||||||
|
|
||||||
|
////////
|
||||||
|
// Core classes in Host.h:
|
||||||
|
class AbstractHost
|
||||||
|
{
|
||||||
|
// ...
|
||||||
|
};
|
||||||
|
|
||||||
|
class SpecialHost : public Abstract Host
|
||||||
|
{
|
||||||
|
// ...
|
||||||
|
};
|
||||||
|
|
||||||
|
class ExtraSpecialHost : public SpecialHost
|
||||||
|
{
|
||||||
|
// ...
|
||||||
|
};
|
||||||
|
|
||||||
|
////////
|
||||||
|
// Declare the root of the attached function hierarchy in Client.h,
|
||||||
|
// which Host.cpp need not include at all:
|
||||||
|
|
||||||
|
enum class ErrorCode { Ok, Bad, // ...
|
||||||
|
}; // a return type for our function
|
||||||
|
|
||||||
|
// First this empty structure serving just to distinguish among instantiations
|
||||||
|
// of AttachedVirtualFunction with otherwise identical arguments
|
||||||
|
// An incomplete type is enough
|
||||||
|
struct DoSomethingTag;
|
||||||
|
|
||||||
|
// Now declare the "virtual function"
|
||||||
|
using DoSomething =
|
||||||
|
AttachedVirtualFunction<
|
||||||
|
DoSomethingTag,
|
||||||
|
ErrorCode,
|
||||||
|
AbstractHost, // class to be switched on by runtime type
|
||||||
|
int, double // other arguments
|
||||||
|
>;
|
||||||
|
|
||||||
|
////////
|
||||||
|
// Usage of the "virtual function"
|
||||||
|
#include "Client.h"
|
||||||
|
void UseDoSomething( AbstractHost &host )
|
||||||
|
{
|
||||||
|
// ...
|
||||||
|
auto error = DoSomething::Call( host, 0, 1.0 );
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
|
||||||
|
////////
|
||||||
|
// Out-of-line registrations needed in Client.cpp:
|
||||||
|
|
||||||
|
// Define the default function body here (as a function returning a function!)
|
||||||
|
template<> auto DoSomething::Implementation() -> Function {
|
||||||
|
return [](AbstractHost &host, int arg1, double arg2) {
|
||||||
|
return ErrorCode::Ok;
|
||||||
|
};
|
||||||
|
// or you could return nullptr to force InconsistencyException at runtime if
|
||||||
|
// the virtual function is invoked for a host subclass for which no override
|
||||||
|
// was defined
|
||||||
|
}
|
||||||
|
// Must also guarantee construction of an instance of class DoSomething at least
|
||||||
|
// once before any use of DoSomething::Call()
|
||||||
|
static DoSomething registerMe;
|
||||||
|
|
||||||
|
////////
|
||||||
|
// An override of the function is defined in SpecialClient.cpp,
|
||||||
|
// building up a hierarchy of function bodies parallel to the host class
|
||||||
|
// hierarchy
|
||||||
|
using DoSomethingSpecial = DoSomething::Override< SpecialHost >;
|
||||||
|
template<> template<> auto DoSomethingSpecial::Implementation() -> Function {
|
||||||
|
// The function can be defined assuming downcast of the first argument
|
||||||
|
// has been done
|
||||||
|
return [](SpecialHost &host, int arg1, double arg2) {
|
||||||
|
return arg1 == 0 ? ErrorCode::Ok : ErrorCode::Bad;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
static DoSomethingSpecial registerMe;
|
||||||
|
|
||||||
|
////////
|
||||||
|
// A further override in ExtraSpecialClient.cpp, demonstrating call-through too
|
||||||
|
using DoSomethingExtraSpecial =
|
||||||
|
DoSomething::Override< ExtraSpecialHost, DoSomethingSpecial >;
|
||||||
|
template<> template<>
|
||||||
|
auto DoSomethingExtraSpecial::Implementation() -> Function {
|
||||||
|
return [](ExtraSpecialHost &host, int arg1, double arg2){
|
||||||
|
// Call the immediately overridden version of the function
|
||||||
|
auto result = Callthrough( host, arg1, arg2 );
|
||||||
|
if ( result == ErrorCode::OK ) {
|
||||||
|
if ( arg2 != 1066.0 )
|
||||||
|
result = ErrorCode::Bad;
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
static DoSomethinExtraSpecial registerMe;
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <functional>
|
||||||
|
#include <mutex>
|
||||||
|
#include <type_traits>
|
||||||
|
#include <utility>
|
||||||
|
#include "InconsistencyException.h"
|
||||||
|
|
||||||
|
template< typename Tag, typename Return, typename This, typename... Arguments >
|
||||||
|
class AttachedVirtualFunction
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
// The type of an overriding function, taking a more specific first
|
||||||
|
// argument
|
||||||
|
template< typename Subclass >
|
||||||
|
using ImplementationFor = std::function< Return( Subclass&, Arguments... ) >;
|
||||||
|
|
||||||
|
// These member names are declared in this class template and redeclared
|
||||||
|
// in each override
|
||||||
|
using Object = This;
|
||||||
|
using Function = ImplementationFor< This >;
|
||||||
|
// A function returning a std::function, which you define elsewhere;
|
||||||
|
// it may return nullptr in case this must act somewhat as a "pure virtual",
|
||||||
|
// throwing InconsistencyException if the function is invoked on a subclass
|
||||||
|
// for which no override was defined
|
||||||
|
static Function Implementation();
|
||||||
|
|
||||||
|
// This class must be instantiated once at least to register the function in
|
||||||
|
// a table, but may be instantiated multiply (and will be if there are any
|
||||||
|
// overrides)
|
||||||
|
AttachedVirtualFunction()
|
||||||
|
{
|
||||||
|
static std::once_flag flag;
|
||||||
|
std::call_once( flag, []{ Register<This>( Implementation() ); } );
|
||||||
|
}
|
||||||
|
|
||||||
|
// For defining overrides of the virtual function; template arguments
|
||||||
|
// are the more specific subclass and the immediately overridden version
|
||||||
|
// of the function, defaulting to the base version
|
||||||
|
template<
|
||||||
|
typename Subclass, typename Overridden = AttachedVirtualFunction >
|
||||||
|
struct Override : Overridden
|
||||||
|
{
|
||||||
|
using Object = Subclass;
|
||||||
|
|
||||||
|
// Check that inheritance is correct
|
||||||
|
static_assert(
|
||||||
|
std::is_base_of< typename Overridden::Object, Object >::value,
|
||||||
|
"overridden class must be a base of the overriding class"
|
||||||
|
);
|
||||||
|
|
||||||
|
using Function = ImplementationFor< Subclass >;
|
||||||
|
// A function returning a std::function that must be defined out-of-line
|
||||||
|
static Function Implementation();
|
||||||
|
// May be used in the body of the overriding function, defining it in
|
||||||
|
// terms of the overridden one:
|
||||||
|
static Return Callthrough(
|
||||||
|
typename Overridden::Object &object, Arguments &&...arguments )
|
||||||
|
{
|
||||||
|
return Overridden::Implementation()(
|
||||||
|
object, std::forward< Arguments >( arguments )... );
|
||||||
|
}
|
||||||
|
Override()
|
||||||
|
{
|
||||||
|
static std::once_flag flag;
|
||||||
|
std::call_once( flag, []{
|
||||||
|
// Register in the table an adaptor thunk that downcasts the object
|
||||||
|
auto implementation = Implementation();
|
||||||
|
Register< Subclass >( [=]( This &obj, Arguments &&...arguments ){
|
||||||
|
return implementation(
|
||||||
|
static_cast< Subclass& >( obj ),
|
||||||
|
std::forward< Arguments >( arguments )... );
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static Return Call( This &obj, Arguments &&...arguments )
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
// Note that the constructors of this class and overrides cause
|
||||||
|
// the registry to be topologically sorted, with functions for
|
||||||
|
// less-derived classes earlier in the table; so take the last
|
||||||
|
// one that matches the object. (The object might not be of the exact
|
||||||
|
// class corresponding to any of the overrides, which is why this
|
||||||
|
// solution involves calling the predicates generated in Register,
|
||||||
|
// and wouldn't work just with hashing on std::type_index; but perhaps
|
||||||
|
// such a cache could be memo-ized)
|
||||||
|
auto ®istry = GetRegistry();
|
||||||
|
auto iter = registry.rbegin(), end = registry.rend();
|
||||||
|
for ( ; iter != end; ++iter ) {
|
||||||
|
auto &entry = *iter;
|
||||||
|
if ( entry.predicate( &obj ) )
|
||||||
|
return entry.function(
|
||||||
|
obj, std::forward< Arguments >( arguments )... );
|
||||||
|
}
|
||||||
|
throw std::bad_function_call{};
|
||||||
|
}
|
||||||
|
catch ( const std::bad_function_call& ) {
|
||||||
|
// No matching case found with a non-null function.
|
||||||
|
// Translate the exception
|
||||||
|
THROW_INCONSISTENCY_EXCEPTION;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
template< typename Subclass >
|
||||||
|
static void Register( const ImplementationFor< This > &function )
|
||||||
|
{
|
||||||
|
// Push back a dynamic type test and corresponding function body
|
||||||
|
GetRegistry().push_back({
|
||||||
|
[]( This *b ){ return dynamic_cast< Subclass * >( b ) != nullptr; },
|
||||||
|
function
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
using Predicate = std::function< bool( This* ) >;
|
||||||
|
|
||||||
|
struct Entry
|
||||||
|
{
|
||||||
|
Predicate predicate;
|
||||||
|
ImplementationFor< This > function;
|
||||||
|
};
|
||||||
|
|
||||||
|
using Registry = std::vector< Entry >;
|
||||||
|
static Registry &GetRegistry()
|
||||||
|
{
|
||||||
|
static Registry registry;
|
||||||
|
return registry;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -103,6 +103,7 @@ audacity_SOURCES = \
|
|||||||
AdornedRulerPanel.cpp \
|
AdornedRulerPanel.cpp \
|
||||||
AdornedRulerPanel.h \
|
AdornedRulerPanel.h \
|
||||||
AllThemeResources.h \
|
AllThemeResources.h \
|
||||||
|
AttachedVirtualFunction.h \
|
||||||
Audacity.h \
|
Audacity.h \
|
||||||
AudacityApp.cpp \
|
AudacityApp.cpp \
|
||||||
AudacityApp.h \
|
AudacityApp.h \
|
||||||
|
@ -287,16 +287,17 @@ am__audacity_SOURCES_DIST = BlockFile.cpp BlockFile.h DirManager.cpp \
|
|||||||
blockfile/SimpleBlockFile.cpp blockfile/SimpleBlockFile.h \
|
blockfile/SimpleBlockFile.cpp blockfile/SimpleBlockFile.h \
|
||||||
xml/XMLTagHandler.cpp xml/XMLTagHandler.h AboutDialog.cpp \
|
xml/XMLTagHandler.cpp xml/XMLTagHandler.h AboutDialog.cpp \
|
||||||
AboutDialog.h AColor.cpp AColor.h AdornedRulerPanel.cpp \
|
AboutDialog.h AColor.cpp AColor.h AdornedRulerPanel.cpp \
|
||||||
AdornedRulerPanel.h AllThemeResources.h Audacity.h \
|
AdornedRulerPanel.h AllThemeResources.h \
|
||||||
AudacityApp.cpp AudacityApp.h AudacityException.cpp \
|
AttachedVirtualFunction.h Audacity.h AudacityApp.cpp \
|
||||||
AudacityException.h AudacityLogger.cpp AudacityLogger.h \
|
AudacityApp.h AudacityException.cpp AudacityException.h \
|
||||||
AudioIO.cpp AudioIO.h AudioIOBase.cpp AudioIOBase.h \
|
AudacityLogger.cpp AudacityLogger.h AudioIO.cpp AudioIO.h \
|
||||||
AudioIOListener.h AutoRecovery.cpp AutoRecovery.h \
|
AudioIOBase.cpp AudioIOBase.h AudioIOListener.h \
|
||||||
AutoRecoveryDialog.cpp AutoRecoveryDialog.h \
|
AutoRecovery.cpp AutoRecovery.h AutoRecoveryDialog.cpp \
|
||||||
BatchCommandDialog.cpp BatchCommandDialog.h BatchCommands.cpp \
|
AutoRecoveryDialog.h BatchCommandDialog.cpp \
|
||||||
BatchCommands.h BatchProcessDialog.cpp BatchProcessDialog.h \
|
BatchCommandDialog.h BatchCommands.cpp BatchCommands.h \
|
||||||
Benchmark.cpp Benchmark.h CellularPanel.cpp CellularPanel.h \
|
BatchProcessDialog.cpp BatchProcessDialog.h Benchmark.cpp \
|
||||||
ClientData.h ClientDataHelpers.h Clipboard.cpp Clipboard.h \
|
Benchmark.h CellularPanel.cpp CellularPanel.h ClientData.h \
|
||||||
|
ClientDataHelpers.h Clipboard.cpp Clipboard.h \
|
||||||
CommonCommandFlags.cpp CommonCommandFlags.h CrashReport.cpp \
|
CommonCommandFlags.cpp CommonCommandFlags.h CrashReport.cpp \
|
||||||
CrashReport.h Dependencies.cpp Dependencies.h DeviceChange.cpp \
|
CrashReport.h Dependencies.cpp Dependencies.h DeviceChange.cpp \
|
||||||
DeviceChange.h DeviceManager.cpp DeviceManager.h Diags.cpp \
|
DeviceChange.h DeviceManager.cpp DeviceManager.h Diags.cpp \
|
||||||
@ -1380,16 +1381,17 @@ audacity_LDADD = $(EXPAT_LIBS) $(FILEDIALOG_LIBS) $(PORTAUDIO_LIBS) \
|
|||||||
$(am__append_43) $(am__append_45) $(am__append_48)
|
$(am__append_43) $(am__append_45) $(am__append_48)
|
||||||
audacity_SOURCES = $(libaudacity_la_SOURCES) AboutDialog.cpp \
|
audacity_SOURCES = $(libaudacity_la_SOURCES) AboutDialog.cpp \
|
||||||
AboutDialog.h AColor.cpp AColor.h AdornedRulerPanel.cpp \
|
AboutDialog.h AColor.cpp AColor.h AdornedRulerPanel.cpp \
|
||||||
AdornedRulerPanel.h AllThemeResources.h Audacity.h \
|
AdornedRulerPanel.h AllThemeResources.h \
|
||||||
AudacityApp.cpp AudacityApp.h AudacityException.cpp \
|
AttachedVirtualFunction.h Audacity.h AudacityApp.cpp \
|
||||||
AudacityException.h AudacityLogger.cpp AudacityLogger.h \
|
AudacityApp.h AudacityException.cpp AudacityException.h \
|
||||||
AudioIO.cpp AudioIO.h AudioIOBase.cpp AudioIOBase.h \
|
AudacityLogger.cpp AudacityLogger.h AudioIO.cpp AudioIO.h \
|
||||||
AudioIOListener.h AutoRecovery.cpp AutoRecovery.h \
|
AudioIOBase.cpp AudioIOBase.h AudioIOListener.h \
|
||||||
AutoRecoveryDialog.cpp AutoRecoveryDialog.h \
|
AutoRecovery.cpp AutoRecovery.h AutoRecoveryDialog.cpp \
|
||||||
BatchCommandDialog.cpp BatchCommandDialog.h BatchCommands.cpp \
|
AutoRecoveryDialog.h BatchCommandDialog.cpp \
|
||||||
BatchCommands.h BatchProcessDialog.cpp BatchProcessDialog.h \
|
BatchCommandDialog.h BatchCommands.cpp BatchCommands.h \
|
||||||
Benchmark.cpp Benchmark.h CellularPanel.cpp CellularPanel.h \
|
BatchProcessDialog.cpp BatchProcessDialog.h Benchmark.cpp \
|
||||||
ClientData.h ClientDataHelpers.h Clipboard.cpp Clipboard.h \
|
Benchmark.h CellularPanel.cpp CellularPanel.h ClientData.h \
|
||||||
|
ClientDataHelpers.h Clipboard.cpp Clipboard.h \
|
||||||
CommonCommandFlags.cpp CommonCommandFlags.h CrashReport.cpp \
|
CommonCommandFlags.cpp CommonCommandFlags.h CrashReport.cpp \
|
||||||
CrashReport.h Dependencies.cpp Dependencies.h DeviceChange.cpp \
|
CrashReport.h Dependencies.cpp Dependencies.h DeviceChange.cpp \
|
||||||
DeviceChange.h DeviceManager.cpp DeviceManager.h Diags.cpp \
|
DeviceChange.h DeviceManager.cpp DeviceManager.h Diags.cpp \
|
||||||
|
@ -508,6 +508,7 @@
|
|||||||
<ClInclude Include="..\..\..\src\AColor.h" />
|
<ClInclude Include="..\..\..\src\AColor.h" />
|
||||||
<ClInclude Include="..\..\..\src\AdornedRulerPanel.h" />
|
<ClInclude Include="..\..\..\src\AdornedRulerPanel.h" />
|
||||||
<ClInclude Include="..\..\..\src\AllThemeResources.h" />
|
<ClInclude Include="..\..\..\src\AllThemeResources.h" />
|
||||||
|
<ClInclude Include="..\..\..\src\AttachedVirtualFunction.h" />
|
||||||
<ClInclude Include="..\..\..\src\Audacity.h" />
|
<ClInclude Include="..\..\..\src\Audacity.h" />
|
||||||
<ClInclude Include="..\..\..\src\AudacityApp.h" />
|
<ClInclude Include="..\..\..\src\AudacityApp.h" />
|
||||||
<ClInclude Include="..\..\..\src\AudacityException.h" />
|
<ClInclude Include="..\..\..\src\AudacityException.h" />
|
||||||
|
@ -1225,6 +1225,9 @@
|
|||||||
<ClInclude Include="..\..\..\src\AllThemeResources.h">
|
<ClInclude Include="..\..\..\src\AllThemeResources.h">
|
||||||
<Filter>src</Filter>
|
<Filter>src</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\..\src\AttachedVirtualFunction.h">
|
||||||
|
<Filter>src</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\..\src\Audacity.h">
|
<ClInclude Include="..\..\..\src\Audacity.h">
|
||||||
<Filter>src</Filter>
|
<Filter>src</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user