flexc++ 2.02.00-3 source package in Ubuntu

Changelog

flexc++ (2.02.00-3) unstable; urgency=medium

  * Rebuild against bobcat >= 3.25.02-3 for g++5 ABI transition.

 -- tony mancill <email address hidden>  Thu, 13 Aug 2015 07:43:57 -0700

Upload details

Uploaded by:
Frank B. Brokken
Uploaded to:
Sid
Original maintainer:
Frank B. Brokken
Architectures:
any
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
flexc++_2.02.00-3.dsc 1.9 KiB 4fbca921fa7a6055a4beaac64c9f9042af4092034daad99cc0443991773a3a70
flexc++_2.02.00.orig.tar.gz 4.2 MiB 3fa74329ffae0ac0e7f8ff4bcbd21bceb84a69598747626bce8891dc1568e557
flexc++_2.02.00-3.debian.tar.xz 5.3 KiB 65a1d6decd1646629fe73c7112c4c71b1dc30d78f15446110b8c517b01e661a0

No changes file available.

Binary packages built by this source

flexc++: No summary available for flexc++ in ubuntu wily.

No description available for flexc++ in ubuntu wily.

flexc++-dbgsym: debug symbols for package flexc++

 Flexc++ was designed after `flex'. Flexc++ offers as compared to flex's C++
 option a cleaner class-design.
 .
 Flexc++ generates a scanner class that is ready for use, as well as a member
 function producing the lexical scanner tokens (lex()). The class can easily
 be provided with additional members without the need for polymorphic
 functions. Consequently, classes generated by flexc++ have no virtual members
 and actually have but one public member: lex(), replacing the old-style flex
 and flex++ yylex() function.
 .
 Flexc++ offers many options, among which an option to define classes
 generated by flexc++ in a separate namespace. This allows developers to
 define additional symbols, even outside of the class generated by flexc++,
 without encountering name-collision problems. With flexc++, artificial means
 to prevent name-collisions, like the yy-conventions used by flex and flex++
 are no longer required. Flexc++ generates C++ code. If C code is required,
 flex should be used. Flexc++'s grammar requirements are highly compatible
 with flex's requirements, so converting a flex grammar into a flexc++ grammar
 should be fairly simple.
 .
 In addition to the flexc++ scanner generator itself and several skeleton
 files, the package contains an extensive man-page, as well as a full manual
 rewritten after the original flex manual, and several examples.