0
votes
1answer
45 views
.net mvc single admin section multiple sites
Hi,
Desired outcome:
4 customer facing sites as separated projects
1 set of admin code used by all four sites
My current setup is 4 Projects:
Core for models/entities
Data for repositories
…
1
vote
1answer
348 views
Code Separation Paradox: Create HTML Tree from Multi-Dimensional Array AND Keep the HTML Outside of the Recursive Function
This working code seems to be the typical solution to this problem.
It takes a multi-dimensional array that holds categories and their subcategories (with no implied limitation on how many levels …
2
votes
3answers
399 views
Multiple Singleton Instances
Hi all:
I am writing a library of utility classes, many of which are singletons. I have implemented them as such using inheritance:
template <class T>
class Singleton {
public:
…
3
votes
13answers
1k views
C++ code in header files
My personal style with C++ has always to put class declarations in an include file, and definitions in a .cpp file, very much like stipulated in Martin York's answer to C++ Header Files, Code …
3
votes
6answers
2k views
C++ Header Files, Code Separation
Hi, I am new to C++ and I had a few general questions about code separation. I have currently built a small application, all in one file. What I want to do now is covert this into separate files …
