Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/To-Do List.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Add TClockEx Feature: ZZ = 3 character TimeZone Code in Custom Format String.

NEED TO ADD: CommandLine /Switch Option to Mouse Click Run App X Feature.

Fix Bugs And Add Support For Newer Windows 10 Builds

Requests: From DC Member: freaky44
- It would be great to have the option to see the size and number of files of
the recycle bin in the Mouse-over Tooltip Text. (e.g. "10 Files, 135 MB").
Expand Down Expand Up @@ -115,7 +117,7 @@ DONE - Fix Context Menu Dismissal Focus Issue

DONE - Find Out Why ToolTip is Bashful (Never Shows the Second Time)

DONE - Need to resolve the focus issue double click action not firing on first run anymore.
DONE - Need to resolve the focus issue double click action not firing on first run anymore.
This is tied to the context menu dismissal bugg (TRUE ...All 3 Buggs Fell Together!).

DONE - NEED TO Restrict Stopwatch Dialog to Single Instance (Evil Psychotic Twin Issue).
Expand Down
31 changes: 31 additions & 0 deletions src/options/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,34 @@ int main(int argc, char* argv[]) {
}
return 0;
}

//Base class
class Parent
{
public:
int id_p;
};

// Sub class inheriting from Base Class(Parent)
class Child : public Parent
{
public:
int id_c;
};

//main function
int main()
{

Child obj1;

// An object of class child has all data members
// and member functions of class parent
obj1.id_c = 7;
obj1.id_p = 91;
cout << "Child id is " << obj1.id_c << endl;
cout << "Parent id is " << obj1.id_p << endl;

return 0;
}