5
votes
10answers
1k views
Static Methods in an Interface/Abstract Class
First off, I understand the reasons why an interface or abstract class (in the .NET/C# terminology) cannot have abstract static methods. My question is then more focused on the best design solution.
…
4
votes
4answers
257 views
Plug In Design for .NET App
I’m looking at rewriting a portion of our application in C# (currently legacy VB6 code). The module I am starting with is responsible for importing data from a variety of systems into our database. …
3
votes
2answers
111 views
C++ DAL - Return Reference or Populate Passed In Reference
Hi,
[EDIT 1 - added third pointer syntax (Thanks Alex)]
Which method would you prefer for a DAL and why out of:
Car& DAL::loadCar(int id) {}
bool DAL::loadCar(int id, Car& car) {}
Car* …
2
votes
3answers
756 views
How to call Events in Interfaces C#?
So i have a design problem. I have a mouse class that has delegates and events. ie MouseButtonPressed, MouseMoved. and such that are getting called by a state engine.
What i want to have happen is …
2
votes
4answers
213 views
What is the best way to pass data between a MainFrame (or Main Dialog) and a Modal Dialog?
I need a modal dialog to gather some user input. I then need the same data to be consumed by the application MainFrame.
Usually my Modal Dialog would have a pointer to some DataType able to store …
1
vote
3answers
160 views
High level design pattern for image editing tools
I have recently begin creating an image editing tool which will cater to a very specific need. This is as much for the people who are going to use it as it is for my own entertainment. however, I …
1
vote
6answers
415 views
What do *you* use C++ ABC constructors for?
Hi,
What do people here use C++ Abstract Base Class constructors for in the field? I am talking about pure interface classes having no data members and no non-pure virtual members.
Can anyone …
0
votes
1answer
584 views
What’s a good Systems Interface Specification template?
A client has a number of disparate systems that they are planning to link together and have asked for a set of system interface specifications that would document the data and protocols used to …
