Search:

Type: Posts; User: gil900

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    6,242

    If you are looking for desktop app for...

    If you are looking for desktop app for automation, the best way to go is to use AutoIt
    AutoIt Scripting Language - AutoIt

    If you still want to build GUI with C++ with pure Win32 API calls then it...
  2. Replies
    4
    Views
    7,632

    Why it may be an issue? Then ProjectB will not...

    Why it may be an issue?

    Then ProjectB will not include MyBarLib

    I created to myself this page:
    GitHub - gileli121/CPP-Project-Structure: My standard of how to structure C++ code

    It...
  3. Replies
    4
    Views
    7,632

    Thank you. It helped me. I think it took me a...

    Thank you. It helped me.
    I think it took me a week to think about my own standard of structure.

    See:



    Include // Shared libraries - Libraries that used for other projects and not stored...
  4. Replies
    4
    Views
    7,632

    How do you name such project folders?

    Hi have 2 types of include folders:

    First folder contains any sources that can be used for another projects

    Second folder contains any sources for the specific project.

    Currently this is my...
  5. I just copied how they created interface from...

    I just copied how they created interface from here
    Interfaces in C++ (Abstract Classes)

    So they also did the same mistake?
  6. Interface with method that return other implementation of the same Interface

    How to solve this ?
    15732

    According to my design the method should return another object of the same interface but I can't do it since it is not yet recognized by the compiler.

    Thanks.
  7. Hi, I thought about it again. I think...

    Hi, I thought about it again.

    I think according to my design experience that it is wrong to do this:


    ModuleA.ipp -- includes --> ModuleA.h
    ModuleB.ipp -- includes --> ModuleB.h

    main.cpp:
  8. I said that what i liked in this forum that you...

    I said that what i liked in this forum that you can ask any questions or maybe write very strange ideas without get blocked due to ranking system. This is good thing to ask questions and write ideas...
  9. I sent some message here to say thank you and the...

    I sent some message here to say thank you and the system deleted it.. hope you still can see it because I wrote there somthing important

    Thanks for the help
  10. So the deal is that i will use ipp extension ...

    So the deal is that i will use ipp extension
    But I am not sure I understand.

    Should I include ipp file inside header file and then in main.cpp and the ipp file I should include the header?

    I...
  11. I did not said that it is wrong. I just did not...

    I did not said that it is wrong. I just did not understand it.

    You say that the idea is the same as I suggested but just use ipp extension instead of cpp ? It sound to me great.

    But is visual...
  12. I was wrong in my example. I did not mean to use...

    I was wrong in my example. I did not mean to use this for a library (so you include library.cpp that includes library.h)
    I more meant to some component of software that is not a library. It is a...
  13. Can you explain what are the benefits of multiple...

    Can you explain what are the benefits of multiple translation units per each cpp file?
    How it can help me?

    It makes more problem than it solves.

    Besides that what I suggested is very against...
  14. I found my solution. The problem begins because...

    I found my solution.
    The problem begins because the way the C++ compiler works sucks.
    The whole idea to create multiple translation units per each cpp file is completely broken idea.

    My...
  15. And can you show me examples from GitHub to some...

    And can you show me examples from GitHub to some header-only libraries?
    As long as I can include header-only library in multiple source cpp files then I want to see.

    Thanks
  16. I am not surprised. The first approach is...

    I am not surprised. The first approach is complete nonsense and I never wanted to force to use the first approach even if it's a standard.
    "standard" doesn't always means a "good" way of doing...
  17. I know that if I add inline keyword before...

    I know that if I add inline keyword before variables (will work on C++17) and functions then I can include my "win32helper.h" file multiple times.
    But what does inline means in a header file?
    ...
  18. How can I develop c++ library in header file without having multiple definition issue

    Hello,

    Here is the way I want to work:

    I want to develop a library file that is a wrapper to win32 functions.
    Let's call it "win32helper.h".

    My win32helper.h is a library that I am willing...
Results 1 to 18 of 21