What is an algorithm for turning one file with lots of classes to many files with one class per file
- by Ole Jak
What is an algorithm for turning one file with lots of classes to many files with one class per file? (C\C++)
So I have that file with such structure: Some includes and than lots of classes that sometimes call each other:
#include <wchar.h>
#include <stdlib.h>
//...
class PG_1 {
//...
}
class PG_2 {
//...
}
//......
class PG_N {
//...
}