I want to make a class that is completely in c++.
class FDynamicTimeWarping
{
...
}
I put this class inside it’s own file DynamicTimeWarping.h
and DynamicTimeWarping.cpp
during the compile I get this “error LNK2019: unresolved external symbol”.
If I put this class inside .h
file of UObject class that uses this, it will compile.
Is there anyway to put this class in its own .h
file to prevent things getting messy?