I think that it really depends on what you're doing. If you're releasing the modules to CPAN then no. (I think its obvious that you aren't). So I would think the question would be: Are any of the modules useful on their own?

For example I've been working on an e-commerce system, I have a module for the shopping cart, a module for displaying items, a module for searching the items. None of the modules would be particularly useful on their own so they have some degree of interconnectedness.

You could clean up your scenerio by using OO programming. Make Module 'A' a subclass of 'B','C', and 'D'. That way when you create a new 'A' object, all the functions from all the modules will be availiable to it. Then you don't need to worry about exporting either and module A becomes the key to make the other modules work.


In reply to Re: So much interconnectedness - good or bad? by cfreak
in thread So much interconnectedness - good or bad? by kiat

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.