Code Monkey home page Code Monkey logo

Comments (4)

aaronjosephs avatar aaronjosephs commented on July 22, 2024

I'm not so sure this is a real issue, it's a library you should be adding the include path, especially considering there are several dependencies. Anyway if you really want to use components by themselves you can just change it yourself. Just for a reference boost uses all <> includes in their hpp files

from cppitertools.

tzachar avatar tzachar commented on July 22, 2024

This is not entirely accurate. boost mixes the use of "" and <>. However, this is not the point. If you look at boost's include files, you will notice that each include is either relative to the current directory (using a "") or a relative to the include path (using <>). All absolute includes make sure to prefix the path with 'boost/', which enables a user to only add the boost include dir to her include path.

In other words, using your current convention, if I am to use your library and place it at /usr/local/include/cppitertools, I have to explicitly add this directory to my incelude path and must include your library using
#include <itertools.hpp>

However, if you change your include scheme to prefix each include with "cppitertoold/", I can drop the library in /usr/local/include and, as this library is already in my include path, only use the following:

#include <cppitertools/itertools.hpp>

Am I making sense?

from cppitertools.

ryanhaining avatar ryanhaining commented on July 22, 2024

yes this is a good explanation. I'll look around to see what the best way to handle it would be and take a closer look at boost. thanks

from cppitertools.

ryanhaining avatar ryanhaining commented on July 22, 2024

Given we don't have a defined based directory name, the "" includes will allow for flexible including so I've made the changes. Thanks for your interest

from cppitertools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.